home *** CD-ROM | disk | FTP | other *** search
- global gHFChoiseLastLine
-
- on mouseDown
- if the doubleClick and (the mouseLine <> -1) then
- dontPassEvent()
- exit
- end if
- put the mouseLine && the number of lines in field "Choise List"
- if the mouseLine >= the number of lines in field "Choise List" then
- dontPassEvent()
- exit
- end if
- set gHFChoiseLastLine to -1
- set mLine to the mouseLine
- if mLine = -1 then
- exit
- else
- set executeOnce to 0
- repeat while the stillDown or (executeOnce = 0)
- set mLine to the mouseLine
- if (mLine <> gHFChoiseLastLine) and (mLine <> -1) then
- set the foreColor of line gHFChoiseLastLine of field "Choise List" to 255
- set the foreColor of line mLine of field "Choise List" to 251
- set gHFChoiseLastLine to mLine
- set executeOnce to 1
- end if
- end repeat
- end if
- set vText to line gHFChoiseLastLine of field "Choise List"
- addDelCategory(vText)
- end
-